home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / p / pov / povlisti.ngs / urchin.pov < prev    next >
Encoding:
Text File  |  1992-06-15  |  1.0 KB  |  34 lines

  1. #include "colors.inc"
  2. #include "textures.inc"
  3. #include "shapes.inc"
  4. #include "shapes2.inc"
  5.  
  6. default { texture { Metal color Orange ambient 0.15} }
  7. // Be sure to delete the Shape definition in spike.inc or it will override
  8. // this definition!!
  9. #declare Shape = object {
  10.     intersection { HalfCone_Y }
  11.     scale <0.5 4.25 0.5>
  12.     translate <0 -4.25 0>
  13.     rotate <90 0 0>
  14. }
  15.  
  16. #include "spike.inc"
  17.  
  18. camera {
  19.    location <0.0  10  -50>
  20.    direction <0.0 0.0  3.0>
  21.    up  <0.0  1.0  0.0>
  22.    right <1.33333 0.0 0.0>
  23.    look_at <0 0 0>
  24. }
  25. object { light_source  { <+50 50 -200>  color White } }
  26. object { light_source  { <+150 250 -200>  color White } }
  27.  
  28. composite { Spikeball rotate <10 10 0>}
  29.  
  30. object { sphere { <-10  10 0> 5 } texture { Metal color White reflection 1.0 } }
  31. object { sphere { <+10  10 0> 5 } texture { Metal color White reflection 1.0 } }
  32. object { sphere { <-10 -10 0> 5 } texture { Metal color White reflection 1.0 } }
  33. object { sphere { <+10 -10 0> 5 } texture { Metal color White reflection 1.0 } }
  34.